c# round up

86

c# round up -

double resultA = Math.Ceiling(1.02); //Mathf.Ceil for Unity

int resultB = Mathf.CeilToInt(1.02); //Unity Only

Comments

Submit
0 Comments